Pointer:
Dereferencing mechanism
Since the value stored in a pointer is a memory address,
the language has to provide a dereferencing mechanism:
the mechanism that can be used to access the value
pointed to by the pointer. &px has the value 654.
& is called the address operator.